ComponentOne CollectionView
C1.CollectionView Assembly / C1.CollectionView Namespace / C1GroupCollectionView<S> Class / InsertAsync Method
The index where the item will be inserted.
The item to be inserted.

In This Topic
    InsertAsync Method (C1GroupCollectionView<S>)
    In This Topic
    Inserts the specified item at the specified index in the collection.
    Syntax
    'Declaration
     
    Public Overrides Function InsertAsync( _
       ByVal index As System.Integer, _
       ByVal addedItem As System.Object _
    ) As System.Threading.Tasks.Task(Of Integer)
    public override System.Threading.Tasks.Task<int> InsertAsync( 
       System.int index,
       System.object addedItem
    )

    Parameters

    index
    The index where the item will be inserted.
    addedItem
    The item to be inserted.
    See Also